home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000316_fdc@columbia.edu_Tue Jun 22 20:26:40 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.dcom.telecom.tech,comp.protocols.kermit.misc
  4. Subject: Re: kermit and a Mitel SX2000 switch
  5. Date: 23 Jun 2004 00:26:24 GMT
  6. Organization: Columbia University
  7. Lines: 32
  8. Message-ID: <slrncdhjhg.h8k.fdc@sesame.cc.columbia.edu>
  9. References: <b5935f8b.0406221348.66d0206e@posting.google.com> <cbahqo$6bt$1@blue.rahul.net>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1087950384 2599 128.59.59.56 (23 Jun 2004 00:26:24 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 23 Jun 2004 00:26:24 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.dcom.telecom.tech:77142 comp.protocols.kermit.misc:15050
  17.  
  18. On 2004-06-23, dold@kermitXand.usenet.us.com <dold@kermitXand.usenet.us.com> wrote:
  19. : Reed Loefgren <reedl@tatteredcover.com> wrote:
  20. :> To talk to our ancient SX2000 we telnet from a linux box over the
  21. :> network to another linux box and from there we run a kermit session.
  22. :> This draws a screen in which we admin the switch.
  23. :
  24. :> I have a test FreeBSD box here that gets to the linux box OK but when
  25. :> I run the script to start the kermit session the maintainance screen
  26. :> is drawn incorrectly, and the numeric keypad doesn't work (to enter a
  27. :> command's number.)
  28. :
  29. :> I'm sure this is from some type of terminal emulation thing in the BSD
  30. :> box, but does anybody know of any terminal related stuff that this
  31. :> Mitel switch might be looking for?
  32. :
  33. : You can send email to kermit-support@columbia.edu 
  34. : or you could post this question to comp.protocols.kermit.misc.
  35. :
  36. Terminal emulation in Unix (any kind of Unix including Linux and BSD) is
  37. done by the console screen or xterm window, not by Kermit.  In your previous
  38. setup, the console screen or xterm on the Linux box you were Telnetting from
  39. happened to be compatible with the escape sequences sent and expected by
  40. your application.  Go to that Linux box, get a shell prompt, and type:
  41.  
  42.   echo $TERM
  43.  
  44. Hopefully there is an environment on your BSD box that supports the same
  45. kind of emulation.  I believe the Linux and BSD consoles are different,
  46. but if you use an xterm window for Telnetting, it should be the same in
  47. both cases, and probably will work.
  48.  
  49. - Frank